Skip to content

Conversation

Copy link

Copilot AI commented Dec 24, 2025

Adds GitHub CLI (gh) to the dotfiles installation process.

Changes

  • Created github/install.sh that installs gh via Homebrew if not present
  • Follows established pattern from node/install.sh, ruby/install.sh, etc.
  • Auto-discovered by script/install alongside other tool installers

Implementation

if test $(command -v brew); then
  if test ! $(command -v gh)
  then
    echo '  Installing GitHub CLI (gh)...'
    brew install gh
  fi
fi
Original prompt

Add github cli


💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 2 commits December 24, 2025 22:24
Co-authored-by: rmw <363764+rmw@users.noreply.github.com>
Co-authored-by: rmw <363764+rmw@users.noreply.github.com>
Copilot AI changed the title [WIP] Add GitHub CLI to project Add GitHub CLI installation support Dec 24, 2025
Copilot AI requested a review from rmw December 24, 2025 22:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants